home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / int.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  436 b   |  24 lines

  1. <!--- This example shows the use of int --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. Int Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  12. <BODY  bgcolor="#FFFFD5">
  13.  
  14. <H3>Int Example</H3>
  15.  
  16. <P>Int returns the closest integer smaller than a number.
  17.  
  18. <P>Int(11.7) : <CFOUTPUT>#Int(11.7)#</CFOUTPUT>
  19. <P>Int(-11.7) : <CFOUTPUT>#Int(-11.7)#</CFOUTPUT>
  20. <P>Int(0) : <CFOUTPUT>#Int(0)#</CFOUTPUT>
  21. </BODY>
  22.  
  23. </HTML>       
  24.